home *** CD-ROM | disk | FTP | other *** search
/ CD World Haziran 1997 / CD World Haziran 1997.iso / Programlama ve Gelistirme / DTime / dtime.txt < prev    next >
Encoding:
Text File  |  1996-11-04  |  3.7 KB  |  88 lines

  1. DTime is a collection of classes & functions designed to ease the MFC 
  2. programmers burden when handling date and time values. If like me, 
  3. having taken a look at the built in MFC classes CTime and CTimeSpan 
  4. or the new COleDateTime and COleDateTimeSpan you decided they did not 
  5. meet your requirements and you wanted to write your own super-duper 
  6. date and time classes, but deadlines were looming, then look no 
  7. further. Included in this distribution is DTime v2.0 which is for 32 
  8. bit Windows only and requires MFC 4.x to use.
  9.  
  10.  
  11. Some of DTimeÆs features include:
  12.  
  13. All source code is supplied for debugging / inspection.
  14.  
  15. The code is portable between the following platforms: Win32 (Windows 95),
  16. Win32 (NT) and Win32 (NT Unicode).
  17.  
  18. The classes sticks very closely to the MFC class structures and provides
  19. routines to map from CTime, COleDateTime, COleDateTimeSpan and CTimeSpan.
  20. Mappings are also available to convert to and from Win32 SDK date and
  21. time structures.
  22.  
  23. The classes do not rely on the "C" runtime library like CTime does. If
  24. you have used the CTime class then you will no doubt have come across its
  25. dependence on the environment variable "TZ" and all the problems that can
  26. give. The classes use of UCT / Local is much less vague than CTime which
  27. performs automatic mappings which can confuse even the most experienced
  28. developer.
  29.  
  30. A number of date / time classes are provided namely CDate, CLTimeSpan,
  31. CLTimeOfDay and CLDate.
  32.  
  33. A comprehensive set of classes and DDX and DDV routines which make use of
  34. the new spin controls, tabbled dialogs and new "Windows 95" look and feel
  35. are also provided to connect to the user interface. 
  36.  
  37. Tight integration with the Win32 NLSAPI. For example all the day of week
  38. and month strings are taken from Win32. This means that if DTime is used
  39. on an international version of Windows, the days of week etc. will be in
  40. the local language.
  41.  
  42. A control panel applet is provided to allow the date when the calendar 
  43. systems were introduced in your country to be modified. The Win32 
  44. national language API does not provide this support so DTime augments
  45. this by adding its own support.
  46.  
  47. Format functions with a superset of the functionality provided by
  48. CTime/CTimeSpan::Format.
  49.  
  50. Overloaded versions of the Format functions are available to display a
  51. date or time according to display characteristics as specified in the
  52. control panel.
  53.  
  54. CDate provides a granularity of 1 day and uses a LONG to represent the
  55. count of days. Its range is valid for roughly the whole range of a LONG
  56. i.e. +/- 2 billion days from the current era. CDate uses a total of 8 
  57. bytes storage.
  58.  
  59. CLTimeOfDay provides a granularity of 1 second and uses 6 bytes storage.
  60.  
  61. CLTimeSpan provides a granularity of 1 second and uses 10 bytes storage. 
  62.  
  63. CLDate provides a granularity of 1 second and uses 12 bytes storage. 
  64. As with CDate, the full range of a LONG is valid. This is "quite" larger
  65. than the roughly 60 year time span for CTime and the 100 CE - 9999CE
  66. time span for COleDateTime. 
  67.  
  68. All classes are fully Unicode enabled and can be built for NT Unicode.
  69.  
  70. All classes are fully enabled for translation by storing all strings 
  71. as resources.
  72.  
  73. Classes fully support UCT (GMT), Local and ET (Ephemeris Time) time 
  74. frames and includes functions to map between them.
  75.  
  76. Classes also fully support the two most common calendars in use, 
  77. namely the GREGORIAN and JULIAN calendars.
  78.  
  79. Demonstration of features such as use of CToolTipCtrl, spin buttons, 
  80. number only edit boxes, DDX & DDV routines, MFC Extensions DLL's, 
  81. portable code techniques plus many other features often asked about.
  82.  
  83.  
  84. PJ Naughter
  85. Email: pjn@indigo.ie
  86. Web: http://indigo.ie/~pjn
  87. 4th November 1996
  88.